Chapter 2: Worksheet 4 Jack K. Cohen Colorado School of Mines
Intermediate Value Theorem and the Method of Bisection
Suggested Problems
Section 2.4: 48, 52, 54
Bisect[f[x], {x, a, b}, eps]To get that third decimal place in the previous exercise, you would type:
Bisect[Cos[1000/r] - r/(r + h), {r, 50008.325, 50008.335}, .0005]This should produce the output:
50008.33 50008.3325 50008.33125 50008.331875 50008.3321875 50008.3320312
Using Bisect, obtain the asteroid root r to six places after the decimal point starting from the approximation we have so far (50008.332). Bisect doesn't let you directly specify the folklore 10 iterations, so you have to think about the eps value that will accomplish the task. Tell what your selection for a, b and eps was with your answer.